home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / tclX6.4c / dist / tclsrc / compat.tcl < prev    next >
Encoding:
Text File  |  1992-11-07  |  932 b   |  25 lines

  1. #
  2. # compat --
  3. #
  4. # This file provides commands compatible with older versions of Extended Tcl.
  5. #------------------------------------------------------------------------------
  6. # Copyright 1992 Karl Lehenbauer and Mark Diekhans.
  7. #
  8. # Permission to use, copy, modify, and distribute this software and its
  9. # documentation for any purpose and without fee is hereby granted, provided
  10. # that the above copyright notice appear in all copies.  Karl Lehenbauer and
  11. # Mark Diekhans make no representations about the suitability of this
  12. # software for any purpose.  It is provided "as is" without express or
  13. # implied warranty.
  14. #------------------------------------------------------------------------------
  15. # $Id: compat.tcl,v 2.0 1992/10/16 04:51:51 markd Rel $
  16. #------------------------------------------------------------------------------
  17. #
  18.  
  19. #@package: TclX-Compatibility execvp
  20.  
  21. proc execvp {progname args} {
  22.     execl $progname $args
  23. }
  24.